/**
  * Name: Aqovo
  * Version: 1.0
  * Author: ThemetechMount
  * Author URI: http://www.themetechmount.com
*/



@import url('https://fonts.googleapis.com/css2?family=Mrs+Saint+Delafield&display=swap');
/* @import url('https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400..700;1,400..700&family=Mrs+Saint+Delafield&display=swap') */

* {
    box-sizing: border-box;
}

body {
    overflow-x: hidden !important;
    overflow-y: auto;
}

/**

  1. General
     - Variables
     - Extra-outer

  2. Spacing

  3. Color
     - Skin-color, Skin-bg-color, Skin-border-color
     - darkGrey-color, darkGrey-bg-color
     - white-color, white-bg-color, white-border-color
     - Grey-color, Grey-bg-color, grey-border-color

  4. Pre-loader

  5. SocialIcon / TooltipTop

  6. Slick_dots/arrows

  7. TopBar

  8. Header
     - SiteBrand(logo)
     - SiteNavigation(Menu)
     - side-menu

  9. Footer
     - FirstFooter
     - SecondFooter
 
  10. GoTop BUtton
  
  11. Page-Title-Row

  12. Inner-Pages
      - single-pages-content
      - Classic_Blog
      - Single_Blog
      - Contact_page
      - Error_page
      - Map

**/


/* ===============================================
    General
------------------------*/

/** Variables **/

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}


a,
a:hover,
a:focus,
a:active {
    text-decoration: none;
    outline: none;
}

a,
button,
input {
    outline: none;
}

ol,
ul {
    padding: 0;
    margin: 0;
}

strong {
    font-weight: 700;
}

iframe {
    width: 100%;
    border: none;
    display: block;
}

p {
    margin: 0 0 15px;
}

a:hover {
    color: var(--base-skin);
}

*::-moz-selection {
    background: var(--base-skin);
    color: var(--base-white);
    text-shadow: none;
}

::-moz-selection {
    background: var(--base-skin);
    color: var(--base-white);
    text-shadow: none;
}

::selection {
    background: var(--base-skin);
    color: var(--base-white);
    text-shadow: none;
}

textarea,
input[type="text"],
input[type="password"],
input[type="datetime"],
input[type="datetime-local"],
input[type="date"],
input[type="month"],
input[type="time"],
input[type="week"],
input[type="number"],
input[type="email"],
input[type="url"],
input[type="search"],
input[type="tel"],
input[type="color"],
.uneditable-input,
select {
    font-family: inherit;
    -webkit-transition: border linear .2s, box-shadow linear .2s;
    -moz-transition: border linear .2s, box-shadow linear .2s;
    -o-transition: border linear .2s, box-shadow linear .2s;
    transition: border linear .2s, box-shadow linear .2s;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    vertical-align: middle;
    width: 100%;
    color: #8093a8;
    padding: 13px 15px 14px;
    border-radius: 0;
    font-weight: 400;
    background-color: var(--white-color);
    text-transform: inherit;
    border: 1px solid rgba(0, 43, 92, 0.08);
    font-size: 14px;
    outline: none;
    line-height: inherit;
    letter-spacing: 0px;
}

button,
input[type="submit"],
input[type="button"],
input[type="reset"] {
    display: inline-block;
    text-decoration: none;
    font-size: 13px;
    line-height: 21px;
    font-weight: 500;
    padding: 11px 40px 11px;
    border: 2px solid transparent;
    border-radius: 0;
    color: var(--white-color);
    -webkit-transition: all 0.25s ease;
    transition: all 0.25s ease;
    cursor: pointer;
    outline: none;
    -webkit-font-smoothing: antialiased;
}

button:focus {
    box-shadow: none;
    outline: 0;
    border: 0;
}

textarea:focus,
input[type="text"]:focus,
input[type="password"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="time"]:focus,
input[type="week"]:focus,
input[type="number"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="tel"]:focus,
input[type="color"]:focus {
    border: 1px solid var(--base-skin);
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    -webkit-appearance: searchfield;
}


/* clears the 'X' from Internet Explorer */
input[type=search]::-ms-clear {
    display: none;
    width: 0;
    height: 0;
}

input[type=search]::-ms-reveal {
    display: none;
    width: 0;
    height: 0;
}

/* clears the 'X' from Chrome */
input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration {
    display: none;
}


textarea:-moz-placeholder,
textarea::-moz-placeholder,
input:-moz-placeholder,
input::-moz-placeholder,
input:-ms-input-placeholder,
input::-ms-input-placeholder,
textarea::-webkit-input-placeholder,
input::-webkit-input-placeholde {
    color: var(--white-color);
}

menu,
ol,
ul {
    margin: 16px 0;
    padding: 0 0 0 25px;
}

:root {
    --base-bodyfont: "Lora", serif;
    --base-bodyfont-Size: 16px;
    --base-bodyfont-color: #6a6a6a;
    --bodyfont-line-height: 26px;
    --bodyfont-font-weight: 400px;
    --base-skin: #1779c0;
    --base-dark: #092420;
    --base-grey: #e9f0ec;
    --base-white: #ffffff;
    --base-headingfont: "Mrs Saint Delafield", cursive;
    --base-headingfont-color: #092420;
    --base-border-radius-5: 5px;
    --base-border-radius-8: 8px;
    --base-border-radius-10: 10px;
    --base-border-radius-15: 15px;
    --base-border-radius-20: 20px;
    --base-border-radius-25: 25px;
    --base-border-radius-30: 30px;
    --base-border-radius-50: 50px;
    --base-border-radius50: 50%;
    --base-border-color: rgba(255, 255, 255, 0.09);
    --base-border-color-white: #ffffff;
    --base-shadow: 0 0 16px 7px rgba(83 20 173 / 0.07);

}


body {

    font-size: var(--base-bodyfont-Size);
    line-height: var(--bodyfont-line-height);
    font-weight: var(--bodyfont-font-weight);
    letter-spacing: 0px;
    color: var(--base-bodyfont-color);
    font-family: var(--base-bodyfont);
}

h1,
h2,
h3,
h4,
h5,
h6 {

    font-family: var(--headingfont);
    margin-bottom: 15px;
    font-weight: 700;
    color: var(--base-headingfont-color);

}

h1 {
    font-size: 60px;
    line-height: 72px;
}

h2 {
    font-size: 50px;
    line-height: 60px;
}

h3 {
    font-size: 38px;
    line-height: 48px;
}

h4 {
    font-size: 30px;
    line-height: 40px;
}

h5 {
    font-size: 20px;
    line-height: 26px;
}

h6 {
    font-size: 18px;
    line-height: 20px;
}

.container {
    max-width: 1330px;
    padding: 0 15px;
}

.row:not(.g-0) {
    margin-left: -15px;
    margin-right: -15px;
}

.row:not(.g-0)>[class*='col-'] {
    padding-left: 15px;
    padding-right: 15px;
}

/** Extra-outer **/
body .page {
    overflow: hidden;
    position: relative;
    z-index: 10;
}

body .page.sticky-column {
    overflow: unset;
}

body .site-main {
    background-color: var(--white-color);
    position: relative;
    z-index: 1;
}

body .page.sidebar-true .site-main {
    padding: 0;
    background-color: var(--white-color);
}

a {
    color: var(--extra-dark-color);
}

a,
img {
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -ms-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}

label {
    font-size: 14px;
}

.fs-16 {
    font-size: 16px !important;
    line-height: 24px
}

.fs-18 {
    font-size: 18px !important;
    line-height: 26px
}

.fs-20 {
    font-size: 20px !important;
    line-height: 30px
}

.fs-22 {
    font-size: 22px !important;
    line-height: 26px
}

.fs-24 {
    font-size: 24px !important;
    line-height: 36px
}

.fs-26 {
    font-size: 26px !important;
    line-height: 36px
}

.fs-28 {
    font-size: 28px !important;
    line-height: 38px
}

.fs-30 {
    font-size: 30px !important;
    line-height: 40px
}

.fs-30 {
    font-size: 30px !important;
    line-height: 40px
}

.fs-52 {
    font-size: 52px !important;
    line-height: 64px
}

.font-weight-400 {
    font-weight: 400 !important;
}

.font-weight-500 {
    font-weight: 500 !important;
}

.font-weight-600 {
    font-weight: 600 !important;
}

.font-weight-700 {
    font-weight: 700 !important;
}

.white-color-with-opacity {
    color: rgba(255, 255, 255, 0.5);
}

.box-shadow {
    box-shadow: 0 0 9px 0 rgba(29, 33, 67, 0.10)
}

.border-rad_3 {
    border-radius: 3px;
    overflow: hidden;
}

.border-rad_4 {
    border-radius: 4px;
    overflow: hidden;
}

.border-rad_5 {
    border-radius: 5px;
    overflow: hidden;
}

.border-rad_6 {
    border-radius: 6px;
    overflow: hidden;
}

.border-rad_7 {
    border-radius: 7px;
    overflow: hidden;
}

.border-rad_8 {
    border-radius: 8px;
    overflow: hidden;
}

.border-rad_9 {
    border-radius: 9px;
    overflow: hidden;
}

.border-rad_10 {
    border-radius: 10px;
    overflow: hidden;
}

.border-bottom-right-radius-20 {
    border-bottom-right-radius: 20px
}

.border-bottom-left-radius-20 {
    border-bottom-left-radius: 20px
}

.border-top-left-radius-20 {
    border-top-left-radius: 20px
}

.border-top-right-radius-20 {
    border-top-right-radius: 20px
}

.border-top-left-radius-50 {
    border-top-left-radius: 50px
}

.border-top-right-radius-50 {
    border-top-right-radius: 50px
}

.border-rad-50 {
    border-radius: 50px;
}

.border-rad-0 {
    border-radius: 0px !important;
}


.alignleft {
    float: left;
    margin: .425em 1.75em 1.25em 0;
}

.alignright {
    float: right;
    margin: .425em 0 1.25em 1.75em;
}

.z-index_1 {
    z-index: -1;
}

.z-index-0 {
    z-index: 0;
}

.z-index-1 {
    z-index: 1;
}

.z-index-2 {
    z-index: 2;
}

.z-index-3 {
    z-index: 3;
}

/*hover class*/
.on_hover_color_skin:hover {
    color: var(--skin-color) !important;
}

.on_hover_color_white:hover {
    color: var(--white-color) !important;
}

/*-------------------------------------------------------------------*/
.prt_single_image-wrapper {
    position: relative;
}

.prt_single_image-wrapper.prt_single_image_hover {
    overflow: hidden;
}

.prt_single_image-wrapper.prt_single_image_hover:after {
    position: absolute;
    top: 0;
    left: -75%;
    display: block;
    content: '';
    width: 50%;
    height: 100%;
    background: -o-linear-gradient(left, rgba(255, 255, 255, 0) 0, rgba(255, 255, 255, .3) 100%);
    background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), to(rgba(255, 255, 255, .3)));
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0, rgba(255, 255, 255, .3) 100%);
    -webkit-transform: skewX(-25deg);
    -ms-transform: skewX(-25deg);
    transform: skewX(-25deg);
}

.prt_single_image-wrapper.prt_single_image_hover:hover:after {
    -webkit-animation: shine 1s;
    animation: shine 1s;
}

@-webkit-keyframes shine {
    100% {
        left: 125%
    }
}

@keyframes shine {
    100% {
        left: 125%
    }
}

.prt_single_image-wrapper .prt-play-icon-btn {
    position: absolute;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.prt_single_image-wrapper.imagestyle-one {
    padding-right: 65px;
    margin-right: -65px;
    z-index: 9;
    padding-top: 65px;
}

.prt_single_image-wrapper.imagestyle-one:before {
    background-image: url(https://themetechmount.com/html/aqovo/aqovo-advance/images/img-pattern-bg1.png);
    content: '';
    position: absolute;
    width: 190px;
    height: 226px;
    background-repeat: no-repeat;
    right: 0;
    top: 0;
    z-index: -1;
}

.prt_single_image-wrapper.imagestyle-two {
    margin-top: 80px !important;
    margin-bottom: 50px !important;
}

.prt_single_image-wrapper.imagestyle-two:before {
    content: '';
    position: absolute;
    height: calc(100% + 130px);
    width: 83%;
    left: 50%;
    top: -80px;
    z-index: -1;
    background-color: #f8f8f8;
}

.prt_single_image-wrapper.imagestyle-two .prt_single_image_text {
    font-size: 23px;
    font-weight: 500;
    position: relative;
    display: inline-block;
    vertical-align: middle;
    padding-right: 110px;
    padding-left: 105px;
    transform: translateY(-35px);
}

.prt_single_image-wrapper.imagestyle-two .prt_single_image_text:before {
    background-color: #db2d46;
    -webkit-mask: url(https://themetechmount.com/html/aqovo/aqovo-advance/images/image-arrow.svg) no-repeat 100% 100%;
    -webkit-mask-box-image: url(https://themetechmount.com/html/aqovo/aqovo-advance/images/image-arrow.svg);
    content: '';
    position: absolute;
    width: 90px;
    height: 50px;
    background-repeat: no-repeat;
    left: 0;
    top: 0;
    right: auto;
}


/* ===============================================
    Spacing
------------------------*/

/** Padding **/
.spacing-1 {
    padding: 50px 0px 50px 0px;
    margin-top: -300px;
}

.spacing-2 {
    padding: 61px 70px 50px 70px;
}


.p-10 {
    padding: 10px ! important;
}

.p-15 {
    padding: 15px ! important;
}

.p-20 {
    padding: 20px ! important;
}

.p-25 {
    padding: 25px ! important;
}

.p-30 {
    padding: 30px ! important;
}

.p-40 {
    padding: 40px ! important;
}

.p-45 {
    padding: 45px ! important;
}

.p-50 {
    padding: 50px ! important;
}

.pr-0 {
    padding-right: 0 !important;
}

.pr-5 {
    padding-right: 5px ! important;
}

.pr-10 {
    padding-right: 10px ! important;
}

.pr-15 {
    padding-right: 15px ! important;
}

.pr-20 {
    padding-right: 20px ! important;
}

.pr-25 {
    padding-right: 25px ! important;
}

.pr-30 {
    padding-right: 30px ! important;
}

.pr-35 {
    padding-right: 35px ! important;
}

.pr-40 {
    padding-right: 40px ! important;
}

.pr-45 {
    padding-right: 45px ! important;
}

.pr-50 {
    padding-right: 50px ! important;
}

.pr-60 {
    padding-right: 60px ! important;
}

.pr-90 {
    padding-right: 90px ! important;
}

.pl-0 {
    padding-left: 0px !important;
}

.pl-2 {
    padding-left: 2px ! important;
}

.pl-3 {
    padding-left: 3px ! important;
}

.pl-5 {
    padding-left: 5px ! important;
}

.pl-10 {
    padding-left: 10px ! important;
}

.pl-15 {
    padding-left: 15px ! important;
}

.pl-20 {
    padding-left: 20px ! important;
}

.pl-25 {
    padding-left: 25px ! important;
}

.pl-30 {
    padding-left: 30px ! important;
}

.pl-35 {
    padding-left: 35px ! important;
}

.pl-40 {
    padding-left: 40px ! important;
}

.pl-50 {
    padding-left: 50px ! important;
}

.pl-55 {
    padding-left: 55px ! important;
}

.pl-60 {
    padding-left: 60px ! important;
}

.pl-90 {
    padding-left: 90px ! important;
}

.pt-0 {
    padding-top: 0px !important;
}

.pt-5 {
    padding-top: 5px ! important;
}

.pt-10 {
    padding-top: 10px ! important;
}

.pt-15 {
    padding-top: 15px ! important;
}

.pt-20 {
    padding-top: 20px ! important;
}

.pt-23 {
    padding-top: 23px ! important;
}

.pt-25 {
    padding-top: 25px ! important;
}

.pt-30 {
    padding-top: 30px ! important;
}

.pt-35 {
    padding-top: 35px ! important;
}

.pt-40 {
    padding-top: 40px ! important;
}

.pt-45 {
    padding-top: 45px ! important;
}

.pt-50 {
    padding-top: 50px ! important;
}

.pb-0 {
    padding-bottom: 0px !important;
}

.pb-5 {
    padding-bottom: 5px ! important;
}

.pb-10 {
    padding-bottom: 10px ! important;
}

.pb-15 {
    padding-bottom: 15px ! important;
}

.pb-20 {
    padding-bottom: 20px ! important;
}

.pb-25 {
    padding-bottom: 25px ! important;
}

.pb-30 {
    padding-bottom: 30px ! important;
}

.pb-35 {
    padding-bottom: 35px ! important;
}

.pb-40 {
    padding-bottom: 40px ! important;
}

.pb-45 {
    padding-bottom: 45px ! important;
}

.pb-50 {
    padding-bottom: 50px ! important;
}

.pb-80 {
    padding-bottom: 80px ! important;
}

.pb-115 {
    padding-bottom: 115px ! important;
}

/** Margin **/
.mt-0 {
    margin-top: 0px !important;
}

.mt-5 {
    margin-top: 5px ! important;
}

.mt-10 {
    margin-top: 10px ! important;
}

.mt-12 {
    margin-top: 12px ! important;
}

.mt-15 {
    margin-top: 15px ! important;
}

.mt-20 {
    margin-top: 20px ! important;
}

.mt-25 {
    margin-top: 25px ! important;
}

.mt-30 {
    margin-top: 30px ! important;
}

.mt-35 {
    margin-top: 35px ! important;
}

.mt-40 {
    margin-top: 40px ! important;
}

.mt-45 {
    margin-top: 45px ! important;
}

.mt-50 {
    margin-top: 50px ! important;
}

.mt-70 {
    margin-top: 70px ! important;
}

.mt-80 {
    margin-top: 80px ! important;
}

.mt-55 {
    margin-top: 55px ! important;
}

.mt-125 {
    margin-top: 125px ! important;
}

.mt-225 {
    margin-top: 225px ! important;
}

.mt-300 {
    margin-top: 300px ! important;
}

.mt_5 {
    margin-top: -5px ! important;
}

.mt_10 {
    margin-top: -10px ! important;
}

.mt_15 {
    margin-top: -15px ! important;
}

.mt_20 {
    margin-top: -20px ! important;
}

.mt_25 {
    margin-top: -25px ! important;
}

.mt_30 {
    margin-top: -30px ! important;
}

.mt_35 {
    margin-top: -35px ! important;
}

.mt_40 {
    margin-top: -40px ! important;
}

.mt_50 {
    margin-top: -50px ! important;
}

.mt_80 {
    margin-top: -80px ! important;
}

.mt_150 {
    margin-top: -150px ! important;
}

.mb-0 {
    margin-bottom: 0px !important;
}

.mb-5 {
    margin-bottom: 5px ! important;
}

.mb-10 {
    margin-bottom: 10px ! important;
}

.mb-12 {
    margin-bottom: 12px ! important;
}

.mb-15 {
    margin-bottom: 15px ! important;
}

.mb-25 {
    margin-bottom: 25px ! important;
}

.mb-20 {
    margin-bottom: 20px ! important;
}

.mb-30 {
    margin-bottom: 30px ! important;
}

.mb-35 {
    margin-bottom: 35px ! important;
}

.mb-40 {
    margin-bottom: 40px ! important;
}

.mb-45 {
    margin-bottom: 45px ! important;
}

.mb-50 {
    margin-bottom: 50px ! important;
}

.mb_5 {
    margin-bottom: -5px ! important;
}

.mb_10 {
    margin-bottom: -10px ! important;
}

.mb_12 {
    margin-bottom: -12px ! important;
}

.mb_15 {
    margin-bottom: -15px ! important;
}

.mb_20 {
    margin-bottom: -20px ! important;
}

.mb_25 {
    margin-bottom: -25px ! important;
}

.mb_30 {
    margin-bottom: -30px ! important;
}

.mb_35 {
    margin-bottom: -35px ! important;
}

.mb_40 {
    margin-bottom: -40px ! important;
}

.mb_45 {
    margin-bottom: -45px ! important;
}

.mb_50 {
    margin-bottom: -50px ! important;
}

.mb_100 {
    margin-bottom: -100px ! important;
}

.ml-0 {
    margin-left: 0px !important;
}

.ml-10 {
    margin-left: 10px ! important;
}

.ml-15 {
    margin-left: 15px ! important;
}

.ml-20 {
    margin-left: 20px ! important;
}

.ml-30 {
    margin-left: 30px ! important;
}

.ml-40 {
    margin-left: 40px ! important;
}

.ml-45 {
    margin-left: 45px ! important;
}

.ml-50 {
    margin-left: 50px ! important;
}

.ml_8 {
    margin-left: -8px ! important;
}

.ml_10 {
    margin-left: -10px ! important;
}

.ml_15 {
    margin-left: -15px ! important;
}

.ml_20 {
    margin-left: -20px ! important;
}

.ml_25 {
    margin-left: -25px ! important;
}

.ml_30 {
    margin-left: -30px ! important;
}

.ml_35 {
    margin-left: -35px ! important;
}

.ml_40 {
    margin-left: -40px ! important;
}

.ml_50 {
    margin-left: -50px ! important;
}

.ml_310 {
    margin-left: -310px ! important;
}

.mr-0 {
    margin-right: 0px !important;
}

.mr-5 {
    margin-right: 5px ! important;
}

.mr-10 {
    margin-right: 10px ! important;
}

.mr-15 {
    margin-right: 15px ! important;
}

.mr-20 {
    margin-right: 20px ! important;
}

.mr-25 {
    margin-right: 25px ! important;
}

.mr-30 {
    margin-right: 30px ! important;
}

.mr-35 {
    margin-right: 35px ! important;
}

.mr-40 {
    margin-right: 40px ! important;
}

.mr-50 {
    margin-right: 50px ! important;
}

.mr_10 {
    margin-right: -10px ! important;
}

.mr_15 {
    margin-right: -15px ! important;
}

.mr_20 {
    margin-right: -20px ! important;
}

.mr_25 {
    margin-right: -25px ! important;
}

.mr_30 {
    margin-right: -30px ! important;
}

.mr_35 {
    margin-right: -35px ! important;
}

.mr_40 {
    margin-right: -40px ! important;
}

.mr_50 {
    margin-right: -50px ! important;
}

.mr_200 {
    margin-right: -200px ! important;
}



/** Typo Colors **/
.border-color {
    color: rgba(255, 255, 255, 0.15);
}

.bodyfont-color {
    color: var(--base-bodyfont-color);
}

.headingfont-color {
    color: var(--base-headingfont-color);
}

/** Background Colors **/
.bg-base-skin {
    background-color: var(--base-skin);
}

.bg-base-secondskin {
    background-color: var(--base-secondskin);
}

.bg-base-dark {
    background-color: var(--base-dark);
}

.bg-base-darkblack {
    background-color: var(--base-darkblack);
}

.bg-base-grey {
    background-color: var(--base-grey);
}

.bg-base-lightgrey {
    background-color: var(--base-lightgrey);
}

.bg-base-white {
    background-color: var(--base-white);
}

.bg-base-gradient {
    background-image: linear-gradient(to right, var(--base-first-gradientcolor) 50%,
            var(--base-second-gradientcolor) 100%);
}

/** Text Colors **/
.text-base-skin {
    color: var(--base-skin);
}

.text-base-dark {
    color: var(--base-dark);
}

.text-base-grey {
    color: var(--base-grey);
}

.text-base-white {
    color: var(--base-white);
}

/** Bg-layer Colors **/
.bg-base-skin>.prt-bg-layer {
    background-color: var(--base-skin);
}

.bg-base-dark>.prt-bg-layer {
    background-color: var(--base-dark);
}

.bg-base-darkblack>.prt-bg-layer {
    background-color: var(--base-darkblack);
}

.bg-base-grey>.prt-bg-layer {
    background-color: var(--base-grey);
}

.bg-base-lightgrey>.prt-bg-layer {
    background-color: var(--base-lightgrey);
}

.bg-base-white>.prt-bg-layer {
    background-color: var(--base-white);
}

.bg-base-skin>.prt-bg-layer>.prt-col-wrapper-bg-layer-inner {
    background-color: var(--base-skin);
}

.bg-base-dark>.prt-bg-layer>.prt-col-wrapper-bg-layer-inner {
    background-color: var(--base-dark);
}

.bg-base-darkblack>.prt-bg-layer>.prt-col-wrapper-bg-layer-inner {
    background-color: var(--base-darkblack);
}

.bg-base-grey>.prt-bg-layer>.prt-col-wrapper-bg-layer-inner {
    background-color: var(--base-grey);
}

.bg-base-lightgrey>.prt-bg-layer>.prt-col-wrapper-bg-layer-inner {
    background-color: var(--base-lightgrey);
}

.bg-base-white>.prt-bg-layer>.prt-col-wrapper-bg-layer-inner {
    background-color: var(--base-white);
}

.text-base-white h1:not(.text-base-skin, .text-base-dark),
.text-base-white h2:not(.text-base-skin, .text-base-dark),
.text-base-white h3:not(.text-base-skin, .text-base-dark),
.text-base-white h4:not(.text-base-skin, .text-base-dark),
.text-base-white h5:not(.text-base-skin, .text-base-dark),
.text-base-white h6:not(.text-base-skin, .text-base-dark),
.text-base-white a:not(.text-base-skin, .text-base-dark),
.bg-base-dark h1,
.bg-base-dark h2,
.bg-base-dark h3,
.bg-base-dark h4,
.bg-base-dark h5,
.bg-base-dark h6,
.bg-base-darkblack h1,
.bg-base-darkblack h2,
.bg-base-darkblack h3,
.bg-base-darkblack h4,
.bg-base-darkblack h5,
.bg-base-darkblack h6,
.bg-base-skin h1,
.bg-base-skin h2,
.bg-base-skin h3,
.bg-base-skin h4,
.bg-base-skin h5,
.bg-base-skin h6 {
    color: var(--base-white) !important;
}

.bg-base-dark .text-base-white a:not(.text-base-skin, .text-base-dark),
.prt-header-style-01 .top_bar_contact_item a:hover {
    color: var(--base-skin);
}

.bg-base-dark .section-title h3 {
    color: #fff;
}

.bg-base-dark .section-title h3:before,
.bg-base-dark .section-title h3:after {
    color: #fff;
}

.bg-base-dark,
.bg-base-skin {
    color: rgba(255, 255, 255, .50);
}

.bg-base-dark.text-base-white,
.bg-base-skin.text-base-white {
    color: rgba(255, 255, 255, .950);
}

.min-box {
    position: relative;
    min-height: 645px;
}

/* ===============================================
    Pre-loader
------------------------*/

/*  ===============================================
    SocialIcon / TooltipTop
------------------------*/
ul.social-icons {
    margin: 0;
    padding: 0;
}

.social-icons li {
    display: inline-block;
    border: none;
    z-index: 1;
    position: relative;
}

.social-icons li {}

.social-icons li:last-child {
    margin-right: 0px;
}

.social-icons li a {
    display: block;
    text-align: center;
}

.social-icons.circle li>a {
    border-width: 1px;
    border-style: solid;
    height: 33px;
    width: 33px;
    line-height: 33px;
    text-align: center;
    display: block;
    background-color: transparent;
    font-size: 13px;
    border-radius: 50%;
}


/* TooltipTop */
.tooltip-top {
    position: relative;
}

.tooltip:after,
.tooltip:before,
[data-tooltip]:after,
[data-tooltip]:before {
    position: absolute;
    visibility: hidden;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: alpha(Opacity=0);
    opacity: 0;
    -webkit-transition: opacity .2s ease-in-out, visibility .2s ease-in-out, -webkit-transform .2s cubic-bezier(.71, 1.7, .77, 1.24);
    -moz-transition: opacity .2s ease-in-out, visibility .2s ease-in-out, -moz-transform .2s cubic-bezier(.71, 1.7, .77, 1.24);
    transition: opacity .2s ease-in-out, visibility .2s ease-in-out, transform .2s cubic-bezier(.71, 1.7, .77, 1.24);
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    pointer-events: none;
}

.tooltip:before,
[data-tooltip]:before {
    z-index: 1001;
    border: 6px solid transparent;
    background: 0 0;
    content: "";
}

.tooltip-top:before,
.tooltip:before,
[data-tooltip]:before {
    margin-left: -6px;
    margin-bottom: -12px;
    border-top-color: inherit;
}

.tooltip-top:after,
.tooltip-top:before,
.tooltip:after,
.tooltip:before,
[data-tooltip]:after,
[data-tooltip]:before {
    bottom: 100%;
    left: 50%;
}

.tooltip-bottom:after {
    bottom: -100%;
}

.tooltip-bottom:before {
    margin-left: -6px;
    margin-bottom: -12px;
    border-top-color: transparent;
}

.tooltip-bottom:before {
    bottom: -7px;
}

.tooltip-top:focus:after,
.tooltip-top:focus:before,
.tooltip-top:hover:after,
.tooltip-top:hover:before,
.tooltip:focus:after,
.tooltip:focus:before,
.tooltip:hover:after,
.tooltip:hover:before,
[data-tooltip]:focus:after,
[data-tooltip]:focus:before,
[data-tooltip]:hover:after,
[data-tooltip]:hover:before {
    -webkit-transform: translateY(-12px);
    -moz-transform: translateY(-12px);
    transform: translateY(-12px);
}

.tooltip-top:after,
.tooltip:after,
[data-tooltip]:after {
    margin-left: -60px;
}

.tooltip:after,
[data-tooltip]:after {
    z-index: 1000;
    padding: 8px;
    width: 120px;
    color: var(--white-color);
    content: attr(data-tooltip);
    font-size: 14px;
    line-height: 1.2;
    text-align: center;
    border-radius: 5px;
}

.tooltip:focus:after,
.tooltip:focus:before,
.tooltip:hover:after,
.tooltip:hover:before,
[data-tooltip]:focus:after,
[data-tooltip]:focus:before,
[data-tooltip]:hover:after,
[data-tooltip]:hover:before {
    visibility: visible;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    filter: alpha(Opacity=100);
    opacity: 1;
}


/*  ===============================================
    Slick_dots/arrows
------------------------*/
.slick-slide {
    border: 0;
    outline: 0;
}

.slick_slider.no-gutters .slick-slide {
    padding: 0;
}

.slick-slide_ver-sep .slick-slide.slick-active:not(.slick-current)>div:after {
    position: absolute;
    content: "";
    top: 0;
    left: -15px;
    height: 100%;
    width: 1px;
    background-color: #e4e4e4;
}

.cmt-bgcolor-darkgrey .slick-slide_ver-sep .slick-slide.slick-active:not(.slick-current)>div:after,
.cmt-bgcolor-skincolor .slick-slide_ver-sep .slick-slide.slick-active:not(.slick-current)>div:after {
    background-color: rgba(255, 255, 255, .3);
}

.slick_slider.slick_slider-opacity_block .slick-list {
    overflow: visible;
}

.slick_slider.slick-dots-style1 .slick-dots,
.slick_slider.slick-dots-style2 .slick-dots,
.slick_slider.slick-dots-style3 .slick-dots {
    padding: 0;
    margin: 0;
    padding-top: 30px;
    top: 100%;
    line-height: 0;
}

.slick_slider.slick-dots-style1 .slick-dots li,
.slick_slider.slick-dots-style2 .slick-dots li,
.slick_slider.slick-dots-style3 .slick-dots li {
    display: inline-block;
    list-style: none;
    line-height: 0;
}

.slick_slider.slick-dots-style1 .slick-dots li {
    width: calc(19.3% - 0px);
}

.slick_slider.slick-dots-style1 .slick-dots li button {
    height: 4px;
    width: 100%;
    border: 0;
    position: relative;
    margin: 0;
    padding: 0;
    font-size: 0;
    background-color: transparent;
    background-color: #e2e9f1;
}

.slick_slider.slick-dots-style1 .slick-dots li.slick-active button {
    margin: 0;
}

.slick_slider .slick-arrow {
    height: 37px;
    width: 37px;
    border-radius: 5px;
    z-index: 1;
    border: 0;
    color: inherit;
    background-color: rgba(255, 255, 255, .07);
    box-shadow: 0 0 10px 0 rgba(0, 43, 92, 0.08);
    border: 0;
}

.slick_slider .slick-next {
    right: 0;
}

.slick_slider .slick-prev:before,
.slick_slider .slick-next:before {
    font-family: 'themify';
    font-size: 14px;
    line-height: 1;
    opacity: 1;
    font-weight: 900;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.slick_slider .slick-prev:before {
    content: "\e64a";
}

.slick_slider .slick-next:before {
    content: "\e649";
}

.slick-prev,
.slick-next {
    font-size: 0;
    line-height: 0;
    position: absolute;
    top: 50%;
    display: block;
    width: 20px;
    height: 20px;
    padding: 0;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
    cursor: pointer;
    color: transparent;
    border: none;
    outline: none;
    background: transparent;
}


.slick_slider.slick-arrows-style1 .slick-arrow {
    border: 1px solid #dbdbdb;
    opacity: 0;
    z-index: 11;
    overflow: hidden;
    box-shadow: unset;
}

.slick_slider.slick-arrows-style1 .slick-next {
    right: 0px;
    left: auto;
}

.slick_slider.slick-arrows-style1 .slick-prev {
    left: 0px;
}

.slick_slider.slick-arrows-style1:hover .slick-arrow {
    margin: 0 -60px;
    opacity: 1;
    overflow: visible;
}


/*  ===============================================
    TopBar
------------------------*/
.top_bar {
    width: 100%;
    z-index: 3;
    height: 80px;
    padding-left: 90px;
    padding-right: 90px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.top_bar.inner-pages {
    border-radius: 150px 150px 0 0;
}

.top_bar_icon {
    display: inline-block;
    vertical-align: middle;
}

.top_bar_contact_item.with-icon .top_bar_icon i {
    margin-right: 8px;
}

.top_bar_contact_item {
    font-size: 14px;
    line-height: 24px;
    margin-right: 30px;
    padding-right: 5px;
    position: relative;
    display: inline-block;
}

.top_bar_contact_item:last-child {
    margin-right: 0;
}

.prt-bgcolor-darkgrey .top_bar_contact_item.with-icon:not(:last-child):after,
.prt-bgcolor-skincolor .top_bar_contact_item.with-icon:not(:last-child):after {
    background-color: rgba(255, 255, 255, .12);
}

.top_bar_contact_item span {
    display: inline-block;
    vertical-align: middle;
}

.top_bar_contact_item span,
.top_bar_contact_item a {
    color: rgba(255, 255, 255, 0.7);
}

.top_bar .social-icons {
    margin-right: 50px;
}

.top_bar .social-icons ul {
    margin: 0 !important;
}

.top_bar .social-icons li {
    margin: 0;
}

.top_bar .social-icons li a {
    background-color: transparent;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: var(--base-white);
    -webkit-text-fill-color: transparent;
    font-size: 24px;
    margin-right: 20px;
    width: 26px;
    height: 33px;
    line-height: 33px;
    border-radius: 5px;
}

.top_bar .prt-custumbutton {
    display: inline-block;
    padding-left: 30px;
}

.top_bar .header-box {
    position: relative;
    padding-left: 35px;
}

.top_bar .header-box i {
    color: #1779c0;
    /* background-color: var(--base-skin); */
    background-color: #fefaef;
    width: 47px;
    height: 47px;
    line-height: 51px;
    border-radius: 50%;
    text-align: center;
    font-size: 22px;
    display: inline-block;
    vertical-align: inherit;
}

.top_bar .header-box h3 {
    font-size: 18px;
    line-height: 28px;
    font-weight: 600;
    color: var(--base-white);
    font-family: var(--base-bodyfont);
    display: inline-block;
    padding-left: 15px;
    vertical-align: middle;
}

.top_bar .header-box:before {
    content: '';
    position: absolute;
    border-left: 1px solid rgba(255, 255, 255, 0.50);
    height: 33px;
    top: 9px;
    left: -1px;
}

.top_bar .header_social {
    position: relative;
}

.top_bar .header_social:before {
    content: '';
    position: absolute;
    border-left: 1px solid rgba(255, 255, 255, 0.40);
    height: 33px;
    top: 0px;
    right: 30px;
}

.top_bar .top_bar_contact_item a {
    font-size: 22px;
    line-height: 32px;
    font-weight: 700;
    color: var(--base-white);
    margin-bottom: 0;
    font-family: var(--base-bodyfont);
}

.top_bar .header-btn .prt-btn {
    padding: 7px 24px;
    font-size: 18px;
}


/*  ===============================================
    Header
------------------------*/
/** SiteBrand(logo) **/
.site-branding {
    display: inline-block;
}

.site-branding img {
    height: 70px !important;
    width: 120px !important;
}

/* .widget_info */
.widget_info {
    position: relative;
}

.widget_info .widget_icon {
    margin-right: 17px;
}

.header_cart span.number-cart {
    position: absolute;
    top: -10px;
    right: 0;
    width: 20px;
    height: 20px;
    text-align: center;
    line-height: 20px;
    font-size: 9px;
    display: block;
    background-color: var(--skin-color);
    color: var(--white-color);
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -o-border-radius: 50%;
    border-radius: 50%;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
}

.widget_info span {
    font-size: 13px;
    line-height: 23px;
    font-weight: 400;
    color: inherit;
    margin-bottom: 0;
}

.widget_info h3 {
    font-size: 24px;
    line-height: 24px;
    font-weight: 700;
    text-align: left;
    margin: 0;
}

/**  side-menu **/
.side-menu-container {
    position: absolute;
    right: 100px;
    top: 10px;
    left: auto;
}

.side-menu:before {
    content: '';
    position: absolute;
    border-left: 1px solid var(--base-dark);
    height: 33px;
    top: 0px;
    top: -3px;
    right: 53px;
}

.side-menu {
    position: relative;
    top: 5px;
}

.side-menu a {
    display: block;
    text-align: center;
    font-size: 30px;
    color: var(--base-dark);
}

.side-overlay .side h3 {
    font-weight: 500;
    font-size: 30px;
    line-height: 40px;
    padding-top: 100px;
}

.side-overlay .side .top_bar_social {
    padding-top: 350px;
}

.side-overlay .side .social-icons li {
    padding: 0px 0px 0 0;
    min-width: 23px;
    font-size: 22px;
    color: var(--base-dark);
    margin-right: 20px;
}

.side-overlay .side p {
    font-size: 18px;
    line-height: 32px;
    margin-bottom: 0;
    color: var(--base-headingfont-color);
}

.side-overlay .side .big-text {
    position: relative;
}

.side-overlay .side .big-text h2 {
    font-size: 200px;
    writing-mode: vertical-rl;
    transform: rotate(0deg);
    position: absolute;
    left: 60px;
    right: auto;
    top: 0;
    font-weight: 400;
    margin-bottom: 0px;
    margin-top: 0px;
    color: rgba(9, 36, 32, 0.04);
}

.side-overlay .side {
    display: inline-block;
    position: fixed;
    height: 100%;
    top: 0;
    right: 0px;
    width: 400px;
    padding: 50px 40px 40px;
    z-index: 5;
    box-shadow: 0px 13px 25px -12px rgb(0 0 0 / 25%);
    -webkit-transition: transform 0.4s ease;
    transition: transform 0.4s ease;
    -webkit-transform: translateX(420px);
    -ms-transform: translateX(420px);
    transform: translateX(420px);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    background-position: 0% 0%;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: scroll;
}

.side-menu-footer-text strong {
    color: var(--base-dark);
    font-size: 35px;
}

.side-menu-footer-text {
    float: left;
    padding-top: 20px;
    color: var(--base-dark);
}

.side-overlay.on .widget ul.prt-recent-post-list>li .post-date,
.side-overlay.on .widget ul.prt-recent-post-list>li .post-date i {
    color: #818181;
    padding-right: 6px;
}

.side-overlay.on .widget ul.prt-recent-post-list>li>.post-detail a {
    color: var(--base-dark);
}

.side-menu-search.widget-search input[type="search"] {
    width: 100%;
    color: var(--base-bodyfont-color);
    padding: 12px 45px 12px 15px;
    border-radius: 50px;
    border: 1px solid var(--base-dark);
}

/* .side-menu.widget-search .prt-btn {
    padding: 0;
}
.side-menu.widget-search .prt-btn:not(.btn-inline)::before  { content: unset; } */
.side-menu-search.widget-search .prt-btn:not(.btn-inline)::before {
    content: unset;
}

.side-menu-search.widget-search {
    padding-top: 60px;
    position: relative;
}

.side-menu-search.widget-search .search-form .btn[type="submit"] {
    content: "";
    position: absolute;
    bottom: 0;
    top: auto;
    right: 0;
    padding: 0;
    width: 55px;
    height: 50px;
    line-height: 0;
    font-size: 23px;
    z-index: 1;
    border-radius: unset;
    box-shadow: unset;
    color: var(--base-dark);
}

.side-menu-search.widget-search .search-form label {
    display: block;
    margin: 0;
}

.side-overlay.on .widget-recent-post ul.prt-recent-post-list>li {
    padding: 0px 0 !important;
    border-top: unset;
}

.side .close-side i {
    color: var(--base-white);
    left: 16px;
    position: relative;
}

.side-overlay.on .side {
    overflow: auto;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
    -webkit-transition: .4s ease-out;
    -moz-transition: .4s ease-out;
    -o-transition: .4s ease-out;
    -ms-transition: .4s ease-out;
    transition: .4s ease-out;
}

.side .close-side {
    position: absolute;
    right: 20px;
    top: 60px;
    height: 50px;
    width: 50px;
    line-height: 54px;
    border-radius: 50%;
    font-size: 18px;
    background-color: var(--base-dark);
}

.side .prt-detailss ul {
    padding-left: 0;
    padding-top: 15px;
}

.side .prt-detailss ul>li {
    padding-bottom: 3px;
    list-style: none;
}

.side .prt-detailss li span:first-child {
    color: rgba(255, 255, 255, .95);
}

.side .prt-detailss li:first-child span:last-child {
    font-size: 18px;
    font-weight: 800;
    color: var(--base-skin);
}

.side .prt-detailss ul>li a,
.side p {
    color: var(--base-bodyfont-color);
}

.side aside.widget_text {
    margin: 35px 0 35px;
    padding-top: 35px;
    border-top: 1px solid rgba(255, 255, 255, .15);
}

.side aside.widget_text h3 {
    font-size: 19px;
    line-height: 30px;
    margin-bottom: 4px;
    color: var(--base-dark);
}

.side aside.widget_text .wrap-form.cta_form span.text-input {
    margin-bottom: 15px;
}

.side aside.widget_text .wrap-form.cta_form span.text-input input,
.side aside.widget_text .wrap-form.cta_form span.text-input textarea,
.side aside.widget_text .wrap-form.cta_form span.text-input select {
    border-radius: 5px;
    border: 0;
    background-color: #203d71;
    color: rgba(255, 255, 255, .40);
}

/* header_extra */
.header_extra>div {
    margin-left: 12px;
    position: relative;
}

.header_extra {
    position: absolute;
    right: 175px;
    top: 10px;
    left: auto;
}

.header_search .search_btn,
.header_cart .cart_btn {
    position: relative;
    font-size: 20px;
    line-height: 32px;
    top: 5px;
    display: inline-block;
    vertical-align: middle;
    text-align: center;
    color: var(--base-headingfont-color);
}

.header_cart .cart_btn .cart_count {
    position: absolute;
    bottom: 20px;
    left: 20px;
    width: 17px;
    height: 17px;
    text-align: center;
    line-height: 18px;
    font-size: 9px;
    display: block;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -o-border-radius: 50%;
    border-radius: 50%;
}

.header_search_content button.close-search {
    font-size: 20px;
    position: absolute;
    top: 0;
    right: 0;
    width: 40px;
    height: 38px;
    background: none;
    text-align: center;
    display: block;
    line-height: 30px;
    color: #848e9f;
    padding: 0;
    padding-left: 2px;
}

.header_search .header_search_content {
    position: fixed;
    display: block;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    max-height: 400px;
    z-index: 10;
    overflow: auto;
    visibility: hidden;
    opacity: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: var(--base-skin);
    -webkit-transform: translateY(-30px);
    -moz-transform: translateY(-30px);
    -o-transform: translateY(-30px);
    -ms-transform: translateY(-30px);
    transform: translateY(-30px);
    -webkit-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
    background-color: rgba(255, 255, 255, 0.97);
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    border-bottom-width: 4px;
    border-bottom-style: solid;
}

.header_search .header_search_content.on {
    visibility: visible;
    opacity: 1;
    z-index: 9;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
}

.header_search_content_inner {
    max-width: 1170px;
    width: 1170px;
    margin: 0 auto;
    position: relative;
}

.header_search .header_search_content #searchbox {
    position: relative;
}

.header_search .header_search_content #search_query_top {
    border: 0;
    width: 100%;
    outline: none;
    margin: 0;
    border-radius: 0;
    padding: 0 60px 15px 0;
    color: #8a91ac;
    background: 0 0;
    font-weight: 400;
    font-size: 22px;
    letter-spacing: 0;
    background: 0 0;
    z-index: 2;
    padding-right: 70px;
    border-bottom: 1px solid rgba(204, 204, 204, .5);
}

.header_search .header_search_content input::placeholder {
    color: #848e9f;
}

.header_search .header_search_content_inner .close_btn {
    position: absolute;
    display: block;
    right: 5px;
    top: -45px;
    color: #8a91ac;
    overflow: hidden;
    z-index: 2;
}

.header_search .header_search_content .close_btn i {
    font-size: 20px;
    line-height: 17px;
}

.header_search .header_search_content i,
.header_search .header_search_content p {
    color: #8a91ac !important;
}


/** SiteNavigation(Menu) **/
.site-navigation {
    position: relative;
    z-index: 2;
}

.site-navigation nav.main-menu ul.menu>li>a {
    font-family: var(--base-bodyfont);
    font-size: 18px;
    padding: 15px 25px 15px 25px;
    display: block;
    position: relative;
    font-weight: 500;
    text-transform: capitalize;
    letter-spacing: 0;
}

#site-header-menu .prt-stickable-header .site-navigation ul.menu>li.active>a {
    color: var(--base-skin);
}

/* ===============================================
    Footer
------------------------*/
.footer {
    z-index: 1;
    padding: 90px 0 0;
    position: relative;
    background-position: center center;
    background-attachment: scroll;
}

.footer .footer-logo {
    position: relative;
}

.footer .footer-logo-desc {
    position: relative;
    margin-left: 25px;
    padding-left: 25px;
}

.footer .footer-logo-desc:before {
    content: '';
    background-color: rgba(255, 255, 255, 0.10);
    position: absolute;
    width: 1px;
    height: 40px;
    left: 0;
    top: -7px;
}

.footer .footer-logo-desc span {
    color: rgba(255, 255, 255, 0.6) !important;
}

.footer .social-icons li {
    font-weight: normal;
    text-align: center;
    position: relative;
    margin-left: 16px;
}

.footer .social-icons li a {
    width: 30px;
    height: 30px;
    line-height: 30px;
    border-radius: 3px;
    border: none;
    text-align: center;
    display: block;
    font-size: 14px;
    background-color: rgba(255, 255, 255, 0.10);
}

.footer .social-icons li a i {
    line-height: 30px;
    color: var(--base-headingfont-color);
    background-color: transparent;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: var(--body-blackfont-color);
    -webkit-text-fill-color: transparent;
    font-size: 20px;
    border: 0;
}

.footer .widget .widget-title {
    font-weight: 500;
    font-size: 24px;
    line-height: 32px;
    margin-bottom: 25px;
    display: inline-block;
    position: relative;
    margin-bottom: 15px;
    color: var(--base-headingfont-color);
}

.footer .widget ul {
    margin: 0;
    padding: 0;
    list-style: none;
}


/* second-footer */

.second-footer .widget_text .widget-title h2 {
    font-size: 50px;
    line-height: 60px;
    margin-bottom: 2px;
    color: var(--base-headingfont-color);
}

.second-footer .widget_text .widget-title p {
    color: var(--base-headingfont-color);
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    margin-bottom: 20px;
}

.second-footer .widget.widget_text {}

.second-footer .footer-rows {
    border-top: 1px solid rgba(0, 0, 0, 0.30);
    border-bottom: 1px solid rgba(0, 0, 0, 0.30);
    padding: 5px 0 10px;
    margin-top: 40px;
}

/*widget-form*/
.second-footer .newsletter-form {
    position: relative;
    margin-bottom: 0px;
    clear: both;
    display: inline-block;
    width: 100%;
}

.second-footer .newsletter-form .mailchimp-inputbox {
    display: table;
    width: 100%;
    padding: 0px;
    position: relative;
    z-index: 1;
}

.second-footer .newsletter-form input[type="email"] {
    background-color: transparent;
    border-color: transparent;
    color: var(--base-headingfont-color);
    padding: 0px 120px 15px 0px;
    margin-bottom: 5px;
    font-size: 14px;
    line-height: 16px;
    border-bottom: 1px solid var(--base-headingfont-color);
    position: relative;
}

.second-footer .newsletter-form input[type="email"]::placeholder {
    color: var(--base-bodyfont-color);
}

.second-footer .newsletter-form i {
    position: absolute;
    font-size: 20px;
    line-height: 20px;
    color: var(--base-white);
}

.second-footer .newsletter-form button[type="submit"]:hover {
    background-color: var(--base-skin);
    color: var(--base-white);
}

.second-footer .newsletter-form button[type="submit"]:focus {
    padding: 4px 28px;
    border: 2px solid transparent;
}

.second-footer .newsletter-form button[type="submit"] {
    position: absolute;
    padding: 0;
    font-size: 16px;
    top: -20px;
    border-radius: 50px;
    font-weight: 400;
    right: 0;
    padding: 4px 28px;
    line-height: 26px;
    color: var(--base-headingfont-color);
    background-color: #d2dbd7;
    cursor: pointer;
}

.newsletter-form button[type="submit"] i {
    content: "";
    position: absolute;
    right: 0;
    top: -5px;
    z-index: -1;
    font-size: 20px;
    color: var(--base-white);
}

.newsletter-form button[type="submit"]:hover i {
    color: var(--base-skin);
}

.newsletter-form .prt-btn.prt-btn-style-fill.prt-btn-color-skincolor:hover {
    background-color: var(--base-white);
    border-color: var(--base-white);
    color: var(--base-skin);
}

.newsletter-form .prt-btn.prt-icon-shap.prt-btn-style-fill:hover i {
    background-color: var(--base-skin);
    color: var(--base-white);
}



/** menu-footer-quick-links **/
.widget ul#menu-footer-quick-links li a {
    display: inline-block;
    transition: all .3s;
    color: var(--white-color);
}

.widget ul#menu-footer-quick-links li a:hover,
.widget ul#menu-footer-quick-links_1 li a:hover,
.widget ul#menu-footer-quick-links_2 li a:hover {
    color: var(--base-skin);
}

/* .widget ul#menu-footer-quick-links li a:hover:before ,
.widget ul#menu-footer-quick-links_1 li a:hover:before,
.widget ul#menu-footer-quick-links_2 li a:hover:before {
    position: absolute;
    font-family: themify;
    content: "\e622";
    font-weight: bold;
    font-size: 12px;
    -webkit-transition: all .53 ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all 0.3s ease;
    left: 0;
    opacity: 1;
}
.widget ul#menu-footer-quick-links li a:before ,
.widget ul#menu-footer-quick-links_1 li a:before ,
.widget ul#menu-footer-quick-links_2 li a:before {
    transition: all 0.3s ease;
    left: -15px;
    opacity: 0;
    font-family: themify;
    content: "\e622";
    position: absolute;
    
}
.widget ul#menu-footer-quick-links li a:hover , 
.widget ul#menu-footer-quick-links_1 li a:hover,
.widget ul#menu-footer-quick-links_2 li a:hover {
    padding-left: 20px;
} */

.widget ul#menu-footer-quick-links li,
.widget ul#menu-footer-quick-links_1 li,
.widget ul#menu-footer-quick-links_2 li {
    display: block;
    padding: 0px 0px 6px 0;
    position: relative;
}

.widget ul#menu-footer-quick-links_1 li a:hover,
.widget ul#menu-footer-quick-links_2 li a:hover {
    color: var(--base-skin);
}

/* .widget ul#menu-footer-quick-links_1 li a:hover:before ,
.widget ul#menu-footer-quick-links_2 li a:hover:before {
    position: absolute;
    font-family: themify;
    content: "\e622";
    top: 1px;
    left: -20px;
    font-weight: bold;
    font-size: 12px;
    -webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all 0.3s ease;
    left: 0;
    opacity: 1;
}
.widget ul#menu-footer-quick-links_1 li a:hover ,
.widget ul#menu-footer-quick-links_2 li a:hover {
    padding-left: 15px;
} */
.widget ul#menu-footer-quick-links li:last-child {
    padding-bottom: 0;
}

.footer-rows #menu-footer-quick-links_3 li {
    display: inline-block;
    width: 15%;
}

.footer-rows #menu-footer-quick-links_3 li:last-child {
    width: auto;
}

.footer-rows #menu-footer-quick-links_3 li a {
    color: var(--base-headingfont-color);
}

.footer-rows #menu-footer-quick-links_3 li a:hover {
    color: var(--base-skin);
}

ul#menu-footer-quick-links_3 {
    padding-left: 0;
}

li {
    list-style-type: none;
}

/** widget_img_gellary **/
.widget_img_gellary ul {
    display: inline-table;
    padding-top: 2px;
    font-size: 0;
    margin: 0 -1.1666667%;
}

.widget_img_gellary ul li {
    display: inline-block;
    max-width: 33.21%;
    padding: 3px;
    text-align: center;
    vertical-align: top;
    width: 100%;
}

/** widget_cta **/
.widget_cta {
    position: relative;
    background-color: rgba(255, 255, 255, .04);
    padding: 43px 40px 37px !important;
    margin-top: 70px;
    border-radius: 5px;
}

.widget_cta:before {
    content: '';
    position: absolute;
    width: 4px;
    height: 76%;
    top: 12%;
    left: 0;
}

.widget_cta h3 {
    font-size: 24px;
    line-height: 32px;
    margin-bottom: 25px;
    font-weight: 600;
}

.widget_cta p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 23px;
}

/*newsletter-form*/
.widget .newsletter-form {}

.newsletter-form-fillbox {
    display: flex;
    margin-bottom: 15px;
}

.newsletter-form-fillbox input,
.newsletter-form-fillbox button {
    display: inline-block;
    vertical-align: middle;
}

.newsletter-form-fillbox input {
    padding: 9px 15px 9px;
    border-radius: 3px;
    border: none;
    background-color: #001528;
}

.newsletter-form-fillbox input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.newsletter-form-fillbox button {
    background-color: var(--skin-color);
    padding: 9px 15px;
    border-radius: 3px;
    border: none;
    margin-left: 9px;
}

.newsletter-form-fillbox button i {
    font-size: 20px;
    line-height: 26px;
}

/* checkbox  */
.newsletter-form .cookies input[type=checkbox] {
    visibility: hidden;
    position: absolute;
}

.newsletter-form .cookies input[type=checkbox]+label {
    height: 15px;
    width: 15px;
    border: 1px solid rgba(255, 255, 255, 0.20);
    border-radius: 4px;
    vertical-align: middle;
    margin-bottom: 0px;
    margin-right: 6px;
}

.newsletter-form .cookies input[type=checkbox]+label:before {
    height: 15px;
    width: 15px;
    border: 1px solid transparent;
    border-radius: 4px;
    content: " ";
    display: inline-block;
    vertical-align: top;
}

.newsletter-form .cookies input[type=checkbox]:checked+label:before {
    content: "";
    border: solid;
    border-color: var(--skin-color);
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    display: block;
    left: 3px;
    top: 0;
    width: 6px;
    height: 10px;
    background-color: transparent !important;
    border-radius: 0;
    position: relative;
    vertical-align: middle;
}

.bottom-footer-text {
    position: relative;
    z-index: 1;
    background-position: center center;
    background-size: auto;
    background-repeat: no-repeat;
    background-attachment: fixed;
    padding: 20px 0;
}

.bottom-footer-text .copyright p {
    color: var(--base-headingfont-color);
}

.widget-testimonial.testimonial-content {
    position: relative;
    margin: 0;
}

.widget-testimonial.testimonial-content blockquote {
    padding-top: 75px;
    position: relative;
    color: rgba(255, 255, 255, 0.7);
}

.widget-testimonial.testimonial-content blockquote:before {
    content: url('https://themetechmount.com/html/aqovo/aqovo-advance/images/footer-quote.png');
    position: absolute;
    top: 7px;
    left: 0;
}

.widget-testimonial.testimonial-content blockquote strong {
    padding: 2px 10px;
    border-radius: 3px;
    background-color: var(--skin-color);
    color: var(--white-color);
}

.widget-testimonial.testimonial-content .testimonial-caption h3,
.widget-testimonial.testimonial-content .testimonial-caption label {
    display: inline-block;
    vertical-align: middle;
}

.widget-testimonial.testimonial-content .testimonial-caption h3 {
    font-size: 18px;
    line-height: 28px;
    margin-bottom: 0;
}

.widget-testimonial.testimonial-content .testimonial-caption label {
    font-size: 13px;
    line-height: 28px;
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.5);
}

/*widget_footer_post*/

.widget.widget_footer_post ul.prt-recent-post-list>li {
    padding: 0 0 14px 0;
    border-top: 0;
}

.widget.widget_footer_post ul.prt-recent-post-list>li:last-child {
    padding-bottom: 0;
}

.widget.widget_footer_post ul.prt-recent-post-list>li>.post-detail a {
    font-size: 18px;
    line-height: 26px;
    font-weight: 600;
    display: block;
    position: relative;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    color: var(--white-color);
    font-family: var(--headingfont);
}

.widget.widget_footer_post ul.prt-recent-post-list>li img {
    display: block;
    width: 80px;
    height: 80px;
    float: left;
    margin-right: 18px;
    border-radius: 5px;
}

.widget.widget_footer_post ul.prt-recent-post-list>li span {
    display: block;
    font-size: 13px;
    line-height: 26px;
    margin-bottom: 6px;
    color: rgba(255, 255, 255, 0.5);
}

.widget.widget_footer_post ul.prt-recent-post-list li:after {
    content: " ";
    display: table;
    clear: both;
}

/** copyright **/
.copyright {
    padding-top: 5px;
    padding-bottom: 5px;
    font-size: 14px;
}

.copyright,
.copyright .cpy-text {
    color: var(--base-headingfont-color)
}

.copyright .cpy-text a:hover {
    color: var(--white-color);
}

.copyright ul.list-inline {
    margin: 0;
}

/** Footer-nav-menu **/
.footer-nav-menu {
    padding: 0;
    margin: 0;
}

.footer-nav-menu li {
    display: inline-block;
    padding-right: 18px;
    font-size: 14px;
}

.footer-nav-menu li:last-child {
    padding-right: 0;
}

ul.footer-nav-menu li:after {
    position: absolute;
    content: "|";
    color: var(--white-color);
    padding-left: 8px;
}

ul.footer-nav-menu li:last-child:after {
    content: unset;
}

.bottom-footer-text .footer-nav-menu li a {
    color: rgba(255, 255, 255, .60);
}

.bottom-footer-text .footer-nav-menu li a:hover {
    color: var(--skin-color);
}

/* ===============================================
    GoTop BUtton
------------------------*/
#totop {
    font-weight: 900;
    color: var(--base-white);
    display: none;
    position: fixed;
    right: 34px;
    bottom: 50px;
    z-index: 999;
    height: 0;
    width: 0;
    font-size: 0;
    text-align: center;
    padding-top: 3px;
    line-height: 34px;
    border-radius: 3px;
    background-color: var(--base-skin);
    transition: .3s ease-in-out;
}

#totop.top-visible {
    height: 40px;
    width: 40px;
    font-size: 22px;
    display: inline;
}

@keyframes jump {
    0% {
        bottom: 20px;
    }

    50% {
        bottom: 40px;
    }

    100% {
        bottom: 20px;
    }
}

#totop.top-visible {
    animation: jump 4s infinite;
}

/* ===============================================
    Homepage
------------------------*/

.row.prt-boxes-spacing-10px.slick_slider.slick-arrows-style3 {
    margin-left: -5px !important;
    margin-right: -5px !important;
}


/* ===============================================
    Page-Title-Row
------------------------*/
.prt-page-title-row {
    background-image: url(../images/pagetitle-bg.webp);
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: scroll;
    padding: 100px 0 185px;
}

.prt-page-title-row.prt-bg.prt-bgimage-yes>.prt-bg-layer {
    opacity: unset;
    background-color: transparent;
}

.prt-page-title-row-inner {
    width: 100%;
    text-align: center;
    position: relative;
    padding: 140px 0 0;
}

.prt-page-title-row h3 {
    font-weight: 400;
    font-size: 72px;
    margin-bottom: 0;
    font-family: var(--base-headingfont);
    line-height: 70px;
}

.page-title-heading h2 {
    font-weight: 400;
    text-transform: capitalize;
    font-size: 46px;
    line-height: 56px;
    display: inline-block;
    margin-bottom: 14px;
}

.prt-page-title-row.service-details {
    padding: 100px 0 200px;
}

.prt-page-title-row.services {
    padding: 100px 0 245px;
}

.breadcrumb-wrapper {
    z-index: 99;
    text-align: center;
    display: inline-block;
}

.breadcrumb-wrapper span {
    font-weight: 400;
    text-transform: capitalize;
    font-size: 16px;
    line-height: 26px;
    position: relative;
}

.breadcrumb-wrapper span:first-child {
    padding-right: 50px;
}

.breadcrumb-wrapper span:first-child a {
    color: var(--white-color);
}

.breadcrumb-wrapper span:first-child:after {
    position: absolute;
    content: "";
    width: 9px;
    height: 9px;
    right: 20px;
    top: 7px;
    background-color: var(--white-color);
}

.breadcrumb-wrapper span:first-child:before {
    content: '';
    position: absolute;
    height: 3px;
    width: 30px;
    top: 10px;
    right: 10px;
    background-color: var(--skin-color);
}

/* ===============================================
    Inner-Pages
------------------------*/

/*------------------------------------------------------------------------------*/
/*  single_services
/*------------------------------------------------------------------------------*/
.prt-service-single-content-area div:not(.featured-title)>h3 {
    font-size: 28px;
    line-height: 35px;
    font-weight: 500;
    color: var(--base-headingfont-color);
}

.prt-service-single-content-area p:not(:last-child) {
    margin-bottom: 25px;
}

.prt-service-single-content-area .prt_fatured_image-wrapper {
    position: relative;
}

.prt-service-single-content-area .prt_fatured_image-wrapper .p-15.prt-bgcolor-skincolor {
    color: var(--white-color);
    padding: 15px 30px;
    position: absolute;
    bottom: 0;
    width: 100%;
    background-color: rgba(255, 88, 0, 1);
}

.prt-service-single-content-area .prt-service-description .featured-title h3 {
    font-weight: 500;
}

/*------------------------------------------------------------------------------*/
/*  single_team
/*------------------------------------------------------------------------------*/
.prt-team-member-single-content h2,
.prt-team-member-content h2 {
    font-size: 30px;
    line-height: 40px;
    margin-bottom: 15px;
    font-weight: 500;
    color: var(--base-headingfont-color);
}

.prt-team-member-content .prt-team-member-header-content {
    padding: 25px 10px;
    text-align: center;
    background-color: var(--base-skin);
}

.prt-team-member-single-content-area {
    background-color: var(--base-white);
    -webkit-box-shadow: 0 0 10px 0 rgb(0 0 0 / 10%);
    -moz-box-shadow: 0 0 12px 0 rgba(0, 0, 0, .1);
    box-shadow: 0 0 10px 0 rgb(43 52 59 / 10%);
}

.prt-team-member-content .prt-team-member-header-content .prt-team-member-single-title {
    font-size: 20px;
    line-height: 27px;
    margin-bottom: 0;
    color: var(--base-white);
}

.prt-team-member-content .prt-team-member-header-content .prt-team-member-single-position {
    color: var(--base-white);
}

.prt-team-member-single-content ul.prt-team-details-list {
    margin: 0;
    padding: 25px 30px;
    overflow: hidden;
    clear: both;
}

.prt-team-details-list li {
    position: relative;
    font-size: 16px;
    line-height: 24px;
    display: block;
    padding: 8px 0 9px 0;
}

.prt-team-details-list li a {
    color: inherit;
    color: var(--base-headingfont-color);
}

.prt-team-details-list li a:hover {
    color: var(--base-skin);
}

.prt-team-details-list .prt-team-list-title {
    margin-right: 3px;
    position: relative;
    font-weight: 600;
    font-size: 16px;
    line-height: 20px;
    padding-bottom: 6px;
    color: var(--base-headingfont-color);
}

.team-timeline {
    position: relative;
}

.team-timeline:before {
    content: '';
    position: absolute;
    height: 100%;
    width: 1px;
    background-color: rgba(0, 0, 0, .07);
    top: 10px;
    left: 30%;
    display: block;
}

.prt-team-member-single-content .timeline-panel {
    display: table;
    margin-bottom: 15px;
}

.team-timeline .timeline-panel .timeline-head {
    display: table-cell;
    width: 40%;
    position: relative;
    vertical-align: middle;
}

.team-timeline .timeline-panel .timeline-head h3 {
    font-weight: 500;
    font-size: 22px;
    padding-top: 3px;
    line-height: 30px;
    color: var(--base-headingfont-color);
}

.team-timeline .timeline-panel .timeline-head:before {
    content: '';
    position: absolute;
    height: 15px;
    width: 15px;
    background-color: var(--base-white);
    border: 1px solid rgba(0, 0, 0, .07);
    top: 10px;
    right: 22.5%;
    display: block;
    border-radius: 50%;
    -webkit-transition: all 0.5s ease 0s;
    -moz-transition: all 0.5s ease 0s;
    -ms-transition: all 0.5s ease 0s;
    -o-transition: all 0.5s ease 0s;
    transition: all 0.5s ease 0s;
}

.team-timeline .timeline-panel:nth-child(2) .timeline-head:before {
    height: 8px;
    width: 8px;
    box-shadow: 0 0 1px 5px rgb(68 140 116 / 35%);
    right: 23.5%;
    background-color: var(--base-dark);
}

.team-timeline .timeline-panel .timeline-body {
    display: table-cell;
    position: relative;
    vertical-align: middle;
}

.team-timeline .timeline-body h5:before {
    position: absolute;
    content: "";
    top: 8px;
    left: -50px;
    height: 13px;
    width: 13px;
    border-radius: 50%;
    border: 3px solid #ff8d00;
    background-color: var(--base-white);
}

/*------------------------------------------------------------------------------*/
/*  Single_Blog
/*------------------------------------------------------------------------------*/
.prt-blog-single .post-meta {
    display: block;
    display: block;
    padding-bottom: 18px;
    margin-bottom: 18px;
    margin-top: 25px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.prt-blog-single .post-meta .prt-meta-line i {
    padding-right: 7px;
    font-size: 13px;
    color: var(--base-skin);
}

.prt-blog-single .post-meta .prt-meta-line {
    font-size: 14px;
    line-height: 15px;
    display: inline-block;
    padding-right: 23px;
    position: relative;
}

.prt-blog-single .post-meta .prt-meta-line:not(:last-child):after {
    position: absolute;
    content: "/";
    right: 8px;
    top: 0px;
}

.prt-blog-single h3 {
    font-size: 24px;
    line-height: 36px;
    margin-top: 20px;
    font-weight: 500;
}

.prt-blog-single .prt-list.prt-list-style-icon {
    display: inline-block;
}

.prt-blog-single .prt-list.prt-list-style-icon li {
    position: relative;
    padding-bottom: 13px;
}

.prt-blog-single blockquote {
    display: block;
    z-index: 1;
    padding: 41px 80px 25px 58px;
    position: relative;
    border-left-width: 5px;
    border-left-style: solid;
    border-radius: 10px;
    margin: 35px 0 50px 0;
    font-weight: 400;
    font-size: 18px;
    line-height: 32px;
    min-height: 100px;
    font-style: normal;
    border-left-color: var(--base-skin);
}

.prt-blog-single blockquote p {
    margin-bottom: 1px;
}

.prt-blog-single blockquote:before {
    content: '';
    display: block;
    position: absolute;
    top: 40px;
    left: 40px;
    height: 50px;
    width: 60px;
    -webkit-mask-box-image: url(../images/quote-1.svg);
    z-index: -1;
    background-color: #0924202b;
    transform: rotateZ(179deg);
    mask-size: auto;
    -webkit-mask-size: cover;
    mask-size: cover;
}

.prt-blog-single blockquote cite {
    font-size: 18px;
    font-weight: 400;
    margin-top: 5px;
    padding-left: 18px;
    position: relative;
    color: inherit;
    font-style: normal;
}

.prt-blog-single blockquote cite:before {
    position: absolute;
    content: "";
    height: 2px;
    width: 10px;
    left: 0;
    top: 10px;
    background-color: currentColor;
}

.prt-blog-single .social-media-block .social-icons li {
    border: 1px solid var(--base-dark);
    border-radius: 3px;
}

.prt-blog-single .social-media-block .social-icons li:hover {
    border: 1px solid var(--base-skin);
}

.prt-blog-single .social-media-block .social-icons li a:hover {
    background-color: var(--base-skin);
    color: var(--base-white);
}

.prt-blog-single .social-media-block {
    display: block;
    clear: both;
    overflow: hidden;
    padding-top: 10px;
    padding-bottom: 25px;
    border-top: 1px solid #f3f3f3;
    border-bottom: 1px solid #f3f3f3;
    margin-top: 30px;
}

.prt-blog-single .prt_tag_lists {
    font-size: 16px;
}

.prt-blog-single .prt_tag_lists .prt-tags-links-title i {
    padding-right: 5px;
}

.prt-blog-single .social-media-block .prt-tags-links a {
    font-size: 15px;
    font-style: normal;
    display: inline-block;
    color: var(--base-headingfont-color);
    padding: 5px 15px;
    font-weight: 400;
    margin-right: 4px;
    background-color: var(--base-grey);
    border-radius: 3px;
}

.prt-social-share-wrapper {
    display: flex;
    align-items: center;
}

.prt-social-share-wrapper ul li a {
    height: 36px;
    width: 36px;
    line-height: 37px;
    text-align: center;
    display: block;
    font-size: 13px;
    border-radius: 3px;
    background-color: var(--base-grey);
    color: #001528;
}

/*blog-comment*/
.comments-area {
    padding-top: 30px;
    margin-bottom: 0;
}

.comments-area h3.comment-reply-title {
    font-size: 30px;
    line-height: 40px;
    margin-bottom: 15px;
}

.comment-form textarea,
.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"] {
    padding-left: 15px;
    background-color: var(--base-grey);
    border: 1px solid transparent;
    border-radius: 5px;
}

.comments-area .comment-form .comment-form-author,
.comments-area .comment-form .comment-form-email,
.comments-area .comment-form .comment-form-url {
    position: relative;
    float: left;
    width: 32%;
    margin-right: 2%;
}

.comments-area .comment-form .comment-form-url {
    margin-right: 0;
}

/*------------------------------------------------------------------------------*/
/*  Project_Blog
/*------------------------------------------------------------------------------*/
.prt-pf-detail-box {
    position: relative;
}

.prt-pf-single-detail-box {
    padding: 25px 25px 0;
    position: absolute;
    right: 0;
    top: auto;
    bottom: -55px;
    background-color: var(--base-skin);
    color: var(--base-white);
    margin: 0;
    min-width: 311px;
}

.prt-pf-single-detail-box ul {
    list-style: none;
    padding-left: 0;
    overflow: hidden;
    margin-top: 0;
}

.prt-pf-single-detail-box ul li {
    position: relative;
    display: block;
    font-size: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, .2);
    padding: 11px 0 11px 0;
}

.prt-pf-single-detail-box ul li:last-child {
    border-bottom: 0;
}

.prt-pf-single-detail-box ul li>span {
    display: block;
}

.prt-pf-single-detail-box ul li>span:first-child {
    font-weight: 600;
    margin-right: 5px;
    font-size: 18px;
}

.prt-pf-single-content-area h2 {
    text-align: left;
    font-size: 28px;
    line-height: 35px;
    font-weight: 500;
    margin-bottom: 20px;
}

.prt-pf-single-content-area .social-icons.circle li>a {
    height: 36px;
    width: 36px;
    line-height: 37px;
    text-align: center;
    display: block;
    font-size: 13px;
    border-radius: 3px;
    background-color: var(--base-grey);
    color: var(--base-headingfont-color);
}

.prt-pf-single-content-area .social-icons.circle li>a:hover {
    background-color: var(--base-skin);
    color: var(--base-white);
    border-color: var(--base-skin);
}

.prt-pf-single-content-area .social-media-block .prt-btn {
    color: inherit;
    text-transform: capitalize;
    font-weight: normal;
    font-size: 15px;
    font-style: normal;
    display: inline-block;
    color: var(--base-headingfont-color);
    padding: 5px 15px;
    font-weight: 400;
    margin-bottom: 7px;
    border-radius: 3px;
}

.prt-pf-single-related-wrapper h2 {
    font-size: 30px;
}

.video-container {
    position: relative;
    width: 100%;
    padding-bottom: 42.25%;
    height: 0;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/*------------------------------------------------------------------------------*/
/*  Contact_page
/*------------------------------------------------------------------------------*/
.prt_contact_widget_wrapper {
    position: relative;
    z-index: 1;
    overflow: visible;
    clear: both;
    padding: 40px 30px;
    padding-left: 35px;
}

@media (min-width: 992px) {
    .prt_contact_widget_wrapper:before {
        position: absolute;
        content: '';
        right: -20px;
        top: 46%;
        margin: 0 auto;
        border-bottom: 20px solid transparent;
        border-top: 20px solid transparent;
        border-left-width: 20px;
        border-left-style: solid;
        z-index: 9;
    }
}

.prt_contact_widget_wrapper ul {
    padding: 0;
    margin: 0;
    z-index: 2;
    list-style: disc;
    clear: both;
    padding-left: 23px;
}

.prt_contact_widget_wrapper li {
    margin-bottom: 25px;
    text-align: left;
    font-size: 22px;
    font-weight: 600;
}

.prt_contact_widget_wrapper li h6 {
    text-align: left;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 5px;
}

.prt_contact_widget_wrapper li span {
    font-size: 16px;
    line-height: 26px;
    font-weight: normal;
}


/*------------------------------------------------------------------------------*/
/*  Error_page
/*------------------------------------------------------------------------------*/
.error-404 {
    background-image: url(../images/404-page-bg.jpg);
    background-color: rgba(255, 255, 255, 0.1);
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: scroll;
}

.page-header {
    margin: 30px 0 15px;
    border-bottom: 1px solid #e4e4e4;
}

section.error-404 {
    padding: 140px 0;
    text-align: center;
}

section.error-404 .prt-big-icon {
    font-size: 120px;
}

section.error-404 h1 {
    font-size: 70px;
    text-transform: uppercase;
    line-height: 100%;
}

section.error-404 .page-content p {
    font-size: 18px;
    margin-bottom: 30px;
}


/*------------------------------------------------------------------------------*/
/*  Map
/*------------------------------------------------------------------------------*/
#map {
    display: block;
    height: 550px;
    width: 100%;
}


/* nav bar */
.top-nav-bg {
    background-color: #1b7abc;
    /* background-color: #fefaef; */
}

/* nav end */


/* footer */

.footer-bg {
    background-color: #fefaef;
}

.footer-copyright {
    display: flex;
    justify-content: space-between;

}

.footer-content-row {
    display: flex;
    justify-content: space-between;
}

.footer-social-icon a {
    padding: 0px 15px 15px 0px;
    font-size: 20px;
    color: #1779c0;
}

.footer-social-icon a:hover {
    color: #e42324;
}

.footer-logo img {
    width: 140px;
    padding-bottom: 20px;
}

@media(max-width:992px) {
    .footer-menu {
        padding-top: 30px !important;
    }
}

@media(max-width:500px) {
    .footer-copyright {
        display: flex;
        flex-direction: column;

    }
}

/* footer end */


/* about page  */

.about-us-section {
    padding-bottom: 30px !important;
    background-color: #fefaef !important;
}

.about-content h3 {
    color: #000000 !important;
}

.about-content p {
    color: #000000 !important;
    font-size: 17px;
}

/* about end */

/* cta */

.cta-bg {
    background-color: #1779c0 !important;
    /* background-color: #fede89 !important; */
}

/* cta end */

/* contact page */

.contact-page-bg {
    background-color: #fefaef !important;
}

.contact-banner-title h2 {
    color: #000000 !important;
}

/* contact page end */


/* floating btn */

.floating-buttons {
    position: fixed;
    bottom: 20px;
    left: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 99;
}

.floating-buttons a {
    width: 45px;
    height: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #25D366;
    border-radius: 50%;
    color: white;
    font-size: 18px;
    text-decoration: none;
}

.floating-buttons .call-btn {
    background-color: #007bff;
}

/* end */


/* banner start*/

.banner {
    position: relative;
    background-image: url('../images/banner-2.jpg'); 
    background-size: cover;
    background-position: center;
    height: 92vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #ffffff;
    z-index: 1;
}

.banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: -1;
}


.banner h1 {
    font-size: 4rem;
    margin-bottom: 20px;
    color: #ffffff;
}


.banner-btn {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.banner-btn-call i {
    background-color: #ffffff;
    color: #1b7abc;
    padding: 5px;
    border-radius: 50px;
    font-size: 15px;
}

.banner-btn-contact i {
    background-color: #ffffff;
    color: #1b7abc;
    padding: 5px;
    border-radius: 50px;
    font-size: 15px;
}

.banner-btn-call a {
    background-color: #1779c0;
    color: #ffffff;
    padding: 8px 25px 8px 25px;
    font-size: 20px;
    border-radius: 50px;
}

.banner-btn-contact a {
    background-color: #1779c0;
    color: #ffffff;
    padding: 8px 25px 8px 25px;
    font-size: 20px;
    border-radius: 50px;
}



.banner-btn-contact a:hover {
    border: 2px solid #1779c0;
    background-color: #ffffff;
    color: #1779c0;

}



.banner-btn-call a:hover {
    border: 2px solid #1779c0;
    background-color: #ffffff;
    color: #1779c0;

}



@media (max-width: 576px) {
    .banner h1 {
        font-size: 2rem;
    }

    /* .btn {
        width: 100%;
        margin: 5px 0;
    } */
}

/* banner */
@media (max-width:435px) {
    .banner {
        background-image: url(..//images/banner-2.jpg);
        background-size: cover;
        background-position: center;
        height: 62vh;
    }
}

/* banner */


@media (max-width:430px) {
    .banner-btn-call a {
        padding: 8px 23px 8px 25px;
        font-size: 13px;
    }

    .banner-btn-contact a {
        padding: 8px 23px 8px 25px;
        font-size: 13px;
    }
}

/* banner end */

/* head */
.header-social-media {
    display: flex;
    align-items: center;
    padding: 0px 0px 0px 30px;

}

.header-social-media a {
    margin: 0px 10px 0px 10px;
    font-size: 25px;
    color: #ffffff;
}

.header-social-media i:hover {
    transform: rotateY(360deg);
    transition: 1s;
}

.top-nav-call a:hover {
    color: #c0bfbf !important;
}

@media (max-width:1200px) {
    .header-social-media {
        display: none;
    }
}

/* head end */

.about-home-section {
    padding-bottom: 15px !important;
}

.about-btn:hover {
    background-color: #ffffff !important;
    border: 2px solid #1779c0 !important;
    color: #1779c0 !important;
}

.service-btn {
    padding-top: 40px;
    text-align: center;
}

.service-btn a {
    background-color: #1779c0;
    color: #ffffff;
    border-radius: 50px;
    padding: 10px 15px 10px 15px;
    font-size: 18px;
}

.service-btn a:hover {
    background-color: #ffffff;
    border: 2px solid #1779c0;
    color: #1779c0;
}

/* service btn end */

/* about mission starrt */

.span-text-color span {
    color: #e22328;
}

.mission-section {
    padding-top: 80px;
    padding-bottom: 80px;
}

.mission-card {
    background-image: url(..//images/banner.jpg);
    background-position: right;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
    background-color: #1779c0;
    padding: 30px;
    border-radius: 10px;
    position: relative;
}

.mission-card:hover {
    border-right: 5px solid #e12227;
    border-bottom: 5px solid #e12227;
}

.mission-icon {
    display: flex;
    justify-content: center;
}

.mission-icon i {
    background-color: #ffffff;
    color: #1779c0;
    border: 3px solid #1779c0;
    font-size: 30px;
    padding: 10px;
    border-radius: 100%;
    position: absolute;
    top: -15%;
}

.mission-content h3 {
    color: #ffffff;
}

.mission-content p {
    color: #ffffff;
    font-size: 18px;
}


.vision-card {
    background-image: url(..//images/vision-bg.jpeg);
    background-position: center !important;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
}

@media (max-width:992px) {
    .mission-card {
        margin-top: 15px;
    }

    .vision-card {
        margin-top: 50px;
    }
}

@media (max-width:475px) {
    .mission-icon i {
        top: -7%;
    }
}

/* mission end */


/* contact page */
.contact-base-bg {
    background-color: #e9f0ec;
}

.contact-base-bg h2 {
    color: #000000 !important;
}

.timing h3 {
    color: #1b7abc !important;
}

.timing p {
    color: #000000 !important;
}

.contact-btn:hover {
    background-color: #ffffff !important;
    border: 2px solid #1b7abc !important;
    color: #1b7abc !important;
}

/* contact end */

/* service page */

@media(max-width:500px) {
    .service-left-side {
        display: none;
    }
}

/* end */

/* why choose us  */

.why-choose-section {

    background-image: url(..//images/why-bg.jpg);
    background-position: center !important;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;

    padding-top: 80px;
    padding-bottom: 50px;
}

.why-choose-title h3 {
    text-align: center;
    color: #ffffff;
}

.why-choose-card {
    background-color: #fefaef;
    padding: 20px;
    border-top-left-radius: 10px;
    border-bottom-right-radius: 10px;
    text-align: center;
    border-bottom: 3px solid #1b7abc;
    border-right: 3px solid #1b7abc;
    margin-top: 10px;
}

.why-choose-card i {
    color: #e22328;
}

.why-choose-card h5 {
    font-size: 17px;
    color: #1b7abc;
}

.why-choose-card p {
    color: #3a3a3a;
}


@media(max-width:432px) {
    .why-choose-card h5 {
        font-size: 15px;
    }

    .why-choose-card p {
        font-size: 14px;
    }
}

/* why choose end */